Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 5 - Berg el orco

[--------------------------------------------------

Berg.

Berg es la última alternativa, por
lo general para el jugador, no
soporta demasiado bien al anillo,
tiene tendencia a destruirlo.

--------------------------------------------------]

A berg is an orco. It is in Pantano19. It is male.
The description of berg is "[if the player is berg]Tu actual portador no es precisamente de tu gusto. [end if]Este orco parece algo más inteligente que los demás."
The printed name of berg is "orco forzudo".
El cadaver of berg is berg_muerto.
Understand "forzudo" as berg.
The drive of berg is 100. [ se mueve siempre ]
The frequency of berg is 1. [pero se plantea cada turno]
The berg is aimless. [aleatorio en principio]
[no hay puertas pero por si acaso]
The openingcapability of berg is unlockedonly.
The reclosingcapability of berg is leave.
Understand "portador" as berg when the player is berg.

[Estados de un orco... más simple que un arma hecha con un palo y un clavo]
Berg can be esperando, persiguiendo, patrullando, dominado, muerto.

[Empieza el juego patrullando]
Berg is esperando.

[Ha sido poseido?]
Berg can be antiguo poseso. Berg is not antiguo poseso.

[No lo activamos al principio]

[ACCIONES de Berg según estado]
[ESPERANDO]
This is the bergEsperando rule:
    if berg is in the location and (the player is icalante or the player is nuhur):
        say "[The berg] se levanta de un salto.";
        now berg is persiguiendo;
        now berg is following;
        activate berg.

[PATRULLANDO]
This is the bergPatrullando rule:
    if berg is in the location:
        if the player is not an orco or berg is antiguo poseso or a random chance of 1 in 8 succeeds:
            say "[The berg] grita: 'Morhg mouhk!' y parece muy cabreado.";
            now berg is persiguiendo;
            now berg is following;
        otherwise if the player is an orco:
            if a random chance of 1 in 4 succeeds:
                say "[one of][The berg] dice: '¿[el portador]? ¿Kerk bork?' parece preocupado.[or][The berg] te mira un poco extrañado. Igual sospecha algo.[or][The berg] se te queda mirando fijamente.[or][The berg] dice duditativo: '¿Monghak?'.[or][The berg] se acaricia la barbilla, casi como si pudiese estar pensando de verdad. Te engañaría si no supieses que todos los orcos son profundamente idiotas[or][The berg] alza una ceja antes de decir: '¿Burk mogh [el portador]?[at random]";
            otherwise:
                hacer que berg haga de orco;
    otherwise:
        hacer que berg haga de orco.

[PERSIGUIENDO]
This is the bergPersiguiendo rule:
    if berg is in the location:
        say "[The berg] te ataca mientras sisea con un ruido muy desagradable.";
        if a random chance of 1 in 2 succeeds:
            say "Pero falla. [The berg] es menos listo de lo que parecía.";
        otherwise:
            say "Y de un mordisco secciona la vena del cuello [if the player is nuhur]del pobre retrasado[otherwise if the player is an orco]de su antiguo compañero[otherwise]del simio naranja[end if]. Un manantial de sangre es el resultado.";
            morir en el pantano;
    otherwise if a random chance of 1 in 35 succeeds:
        [Berg se cansa muy raramente de perseguir]
        now Berg is patrullando;
        now Berg is aimless.

[ GENERAL ]
Every turn:
    if the player is not berg:
        if berg is patrullando:
            follow bergPatrullando rule;
        otherwise if berg is persiguiendo:
            follow bergPersiguiendo rule;
        otherwise if berg is esperando:
            follow bergEsperando rule.

[REACCIONES de Berg según estado]

[Berg puede matarte sin más, se resiste a la dominación y te destruye]
Before doing anything when the player is berg:
    if a random chance of 1 in 20 succeeds:
        say "¡Oh, no! Este orco es bastante más listo que la mayoría.";
        bnw;
        say "De alguna forma puede resistirse a tu poder mental y ahora sabe que lo has estado dominando.";
        bnw;
        say "Te saca de su dedo y te mira con desagrado.";
        bnw;
        ser aplastado por berg.